home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Dev / SpeakFreely_Src / idea / Makefile < prev    next >
Encoding:
Makefile  |  2000-05-27  |  366 b   |  27 lines

  1.  
  2. #   Make file for IDEA package
  3.  
  4. #   Everything will probably work OK without any changes below
  5. #   this line.
  6.  
  7. #   Compiler flags
  8.  
  9. CC = cc
  10. CFLAGS = -O
  11.  
  12. all:    idea.a
  13.  
  14. IDEAOBJS = idea.o
  15.  
  16. idea.a: $(IDEAOBJS)
  17.     rm -f idea.a
  18.     ar cr idea.a $(IDEAOBJS)
  19.  
  20. idea:    $(IDEAOBJS)
  21.     $(CC) $(IDEAOBJS) -o idea
  22.  
  23. idea.o: idea.c idea.h
  24.  
  25. clean:
  26.     rm -f core *.out *.a *.o *.bak idea *.shar
  27.